* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*HEADER*/
.logo {
  height: 80px;
  width: 50px;
}

.name a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.name a:hover {
  text-decoration: none;
  color: pink;
}

.logo:hover {
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}

.name {
  position: absolute;
  font-size: 25px;
  text-align: center;
  padding: 0px;
  font-family: "Italiana", serif;
}

.a .name:hover {
  color: palevioletred;
}

svg {
  position: absolute;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding: 0px 0px;
  padding-right: -60px;
  display: flex;
  animation-name: slideIn;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  /*animation-play-state: paused;*/
}

@keyframes slideIn {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.svg1 {
  width: 50px;
  position: absolute;
  padding: 0px 0px;
  margin-left: 15px;
  margin-top: 25px;
  animation-name: slideAt;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes slideAt {
  0% {
    transform: translateX(15%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
    width: 100vw;
  }
}
header {
  height: 80px;
  width: 100vw;
  display: flex;
  position: relative;
  color: black;
  background-color: rgba(124, 54, 27, 0.1);
  justify-content: space-between;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 0px 0px;
}

.nav {
  width: 30vw;
  display: flex;
  justify-content: space-evenly;
  position: relative;
  align-items: center;
}

header li {
  list-style: none;
}

li a {
  color: rgb(0, 0, 0);
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
  text-decoration: none;
}

li a:hover {
  background-color: #000000;
  border-radius: 4px;
  color: white;
}

.subMenu {
  display: none;
  position: absolute;
  width: 320px;
}

.course:hover .subMenu {
  display: block;
  box-shadow: 10px 10px 8px gray;
  padding: 15px;
  background-color: rgba(255, 251, 251, 0.75);
  line-height: 30px;
  border-radius: 20px;
}

.sb {
  position: relative;
}

.subMenu3 {
  display: none;
  position: absolute;
  width: 350px;
  right: 30px;
}

.course3:hover .subMenu3 {
  display: block;
  box-shadow: 10px 10px 8px gray;
  padding: 15px;
  background-color: rgba(255, 251, 251, 0.75);
  line-height: 35px;
  border-radius: 20px;
}

.sb3 {
  position: relative;
}

.course4 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.course4 svg {
  margin-top: -15px;
  margin-left: -15px;
  width: 28px;
  height: 28px;
  animation: none;
  transition: none;
}

.course4:hover {
  background-color: transparent;
  border-radius: 0;
}

.navigation svg {
  position: relative;
  top: 0;
}

.navigation_svg {
  width: 50px;
  height: 50px;
  background-color: none;
}

li a svg:hover {
  background-color: white;
  border-radius: 4px;
  padding: 5px;
}

@media screen and (max-width: 1440px) and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
/* Mobile Styles */
@media screen and (max-width: 768px) {
  header {
    background-color: transparent;
    box-shadow: none;
  }
  .nav {
    width: 20vw;
    flex-direction: column;
    background-color: rgba(255, 243, 243, 0.9);
    position: absolute;
    top: 0px;
    left: 80%;
    padding-top: 10px;
    box-shadow: none;
  }
  .nav li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  /* Hide submenus by default */
  .subMenu, .subMenu3 {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    background-color: transparent;
    padding: 10px 0;
  }
  .course:hover .subMenu, .course3:hover .subMenu3 {
    display: block;
    padding-left: 0;
  }
  /* Hamburger Menu (Mobile Navigation Toggle) */
  .hamburger {
    display: block;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    border: none;
  }
  .hamburger .bar {
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: #000;
    border-radius: 5px;
  }
  /* Toggle Menu Visibility */
  .nav.active {
    display: block;
  }
  .nav li a {
    font-size: 16px;
    padding: 15px 0;
  }
  /* Sign-in Icon */
  .course4 svg {
    width: 25px;
    height: 25px;
  }
}
body {
  background-color: white;
  margin: 0;
}

/* Main Container */
.Main {
  font-family: "Italiana", serif;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns layout */
  grid-gap: 10px;
  height: 100vh;
  width: 100vw;
}

/* Section 1 (Image and Title) */
.section1 {
  font-family: "Italiana", serif;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  position: relative;
}

/* Center the heading in Section 1 */
.section1 h2 {
  font-size: 2.5rem;
  color: #666;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-out;
}

/* Image Styling */
.section1 img {
  max-width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  animation: slideIn1 1.5s ease-out;
}

/* Image animation */
@keyframes slideIn1 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/* Form Container */
.Sign.in {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: rgba(124, 54, 27, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  animation: slideInLeft 2s ease-out;
}

/* Animation for form container */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
/* Form Content */
.Sign.in .form-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.7); /* Slightly transparent background */
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

/* Heading in the Sign-In Form */
.Sign.in h3 {
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

/* Form Label & Inputs */
.username, .password {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #666;
  width: 100%;
  text-align: left;
}

.usernameInput, .passwordInput {
  width: 100%;
  margin-bottom: 20px;
}

/* Input Fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  background-color: #f9f9f9;
  color: #333;
  transition: all 0.3s ease;
}

input[type=text]:focus, input[type=password]:focus {
  border-color: #666;
  background-color: #fff3e0;
}

/* Buttons */
button {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #666;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

button:hover {
  background-color: #fff3e0;
  color: #333;
}

/* Small Buttons (Sign In, Sign Up) */
button.small {
  font-size: 0.9rem;
  padding: 12px 16px;
  width: auto;
  margin-right: 10px;
  margin-top: 20px;
  background-color: #fff3e7; /* Blue for small buttons */
  color: gray;
}

button.small:hover {
  color: #000000;
}

.Sign.in .small:first-child {
  margin-right: 20px;
}

/* Large Sign In Button */
button.large {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .Main {
    grid-template-columns: 1fr; /* Single column layout on smaller screens */
    padding: 20px;
  }
  .section1 {
    padding: 10px;
  }
  .Sign.in {
    padding: 20px;
  }
  .Sign.in .form-content {
    max-width: 100%;
    padding: 20px;
  }
}/*# sourceMappingURL=sign in form.css.map */